home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / appgini / setup.exe / {app} / files / language.php < prev    next >
Encoding:
PHP Script  |  2004-09-03  |  4.1 KB  |  80 lines

  1. <?php
  2.  
  3.     // IMPORTANT:
  4.     // ==========
  5.     // When translating, only translate the strings that are
  6.     // TO THE RIGHT OF the equal sign (=).
  7.     //
  8.     // Do NOT translate the strings between square brackets ([])
  9.     //
  10.     // Also, leave the text between < and > untranslated.
  11.     // =====================================================
  12.         
  13.  
  14.     // datalist.php
  15.     $Translation["powered by"] = "Powered by";
  16.     $Translation["quick search"] = "Quick Search";
  17.     $Translation["records x to y of z"] = "Records <FirstRecord> to <LastRecord> of <RecordCount>";
  18.     $Translation["filters"] = "Filters";
  19.     $Translation["filter"] = "Filter";
  20.     $Translation["filtered field"] = "Filtered field";
  21.     $Translation["comparison operator"] = "Comparison Operator";
  22.     $Translation["comparison value"] = "Comparison Value";
  23.     $Translation["and"] = "And";
  24.     $Translation["or"] = "Or";
  25.     $Translation["equal to"] = "Equal to";
  26.     $Translation["not equal to"] = "Not equal to";
  27.     $Translation["greater than"] = "Greater than";
  28.     $Translation["greater than or equal to"] = "Greater than or equal to";
  29.     $Translation["less than"] = "Less than";
  30.     $Translation["less than or equal to"] = "Less than or equal to";
  31.     $Translation["like"] = "Like";
  32.     $Translation["not like"] = "Not like";
  33.     $Translation["apply filters"] = "Apply filters";
  34.     $Translation["save filters"] = "Save and apply filters";
  35.     $Translation["saved filters title"] = "HTML Code For The Applied Filters";
  36.     $Translation["saved filters instructions"] = "Copy the code below and paste it to an HTML file to save the filter you just defined so that you can return to it at any time in the future without having to redefine it. You can save this HTML code on your computer or on any server and access this prefiltered table view through it.";
  37.     $Translation["hide code"] = "Hide this code";
  38.     $Translation["printer friendly view"] = "Printer-friendly view";
  39.     $Translation["save as csv"] = "Download as csv file (comma-separated values)";
  40.     $Translation["edit filters"] = "Edit filters";
  41.     $Translation["clear filters"] = "Clear filters";
  42.  
  43.     // _dml.php
  44.     $Translation["are you sure?"] = "Are you sure you want to delete this record?";
  45.     $Translation["add new record"] = "Add new record";
  46.     $Translation["update record"] = "Update record";
  47.     $Translation["delete record"] = "Delete record";
  48.     $Translation["deselect record"] = "Deselect record";
  49.     $Translation["couldn't delete"] = "Couldn't delete record due to presence of <RelatedRecords> related record(s) in table '<TableName>'";
  50.     $Translation["pkfield empty"] = " field is a primary key field and cannot be empty.";
  51.     $Translation["upload image"] = "Upload new image ";
  52.     $Translation["select image"] = "Select an image ";
  53.     $Translation["remove image"] = "Remove image";
  54.     $Translation["month names"] = "January,February,March,April,May,June,July,August,September,October,November,December";
  55.     $Translation["field not null"] = "You can't leave this field empty.";
  56.     $Translation["*"] = "*";
  57.  
  58.     // lib.php
  59.     $Translation["select a table"] = "Go to table";
  60.     $Translation["error:"] = "Error:";
  61.     $Translation["sql error:"] = "SQL error:";
  62.     $Translation["query:"] = "Query:";
  63.     $Translation["< back"] = "< Back";
  64.     $Translation["if you haven't set up"] = "If you haven't set up the database yet, you can do so by clicking <a href='setup/setup.php'>here</a>.";
  65.     
  66.     // setup.php
  67.     $Translation["error while connecting to mysql:"] = "Error while connecting to MySQL: ";
  68.     $Translation["attempting to create db"] = "Attempting to create database '<DBName>' ... ";
  69.     $Translation["error while creating db"] = "Error while creating database: ";
  70.     $Translation["please make sure username has permissions"] = "Please make sure that the username you are using has enough permissions to create the database '<DBName>'";
  71.     $Translation["done"] = "Done ... ";
  72.     $Translation["attempting to create table"] = "Attempting to create table '<TableName>' ... ";
  73.     $Translation["finished setup"] = "Finished database setup ...";
  74.     $Translation["to access your db"] = "To access your database, <a href=../index.html>click here</a>. If setup was successful, you may safely delete the 'setup' folder.";
  75.  
  76.     // general config
  77.     // DO NOT TRANSLATE THE FOLLOWING
  78.     $Translation["ImageFolder"] = "./images/";
  79.  
  80. ?>